Dew Stats for .NET
|
Simulate the ARIMA process.
Parameters |
Description |
[In] TVec p |
stores the AR coefficients. Length of the p vector defines AR(p) order. |
[In] TVec t |
stores the MA coefficients. Length of the t vector defines MA(q) order. |
[In] int d |
defines how many times time series is differentiated (d parameter in ARIMA). |
[In] TVec ResInit |
defines initial values for integration: r[-d+1],Dr[-d+2],...,D^(d-1)r[0]. The length of ResInit must be equal to d, otherwise an exception will be raised. |
[In] int n |
defines number of points to simulate. |
[In] TVec aResult |
returns ARIMA (p,d,q) time series. Size of Result vector is adjusted automatiacally. |
Simulate the ARIMA (p,d,q) process.
Simulate ARIMA(1,2,1) process with Phi=[1.0], Theta=[-0.25], d=2.
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
|
What do you think about this topic? Send feedback!
|